home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 4
/
Aminet 4 - November 1994.iso
/
aminet
/
dev
/
gui
/
triton11.lha
/
Triton
/
Demos
/
Source
/
Makefile
< prev
next >
Wrap
Makefile
|
1994-07-14
|
845b
|
39 lines
#
# Triton - The object oriented GUI creation system for the Amiga
# Written by Stefan Zeiger in 1993-1994
#
# (c) 1993-1994 by Stefan Zeiger
# You are hereby allowed to use this source or parts of it for
# creating programs for AmigaOS which use the Triton GUI creation
# system. All other rights reserved.
#
# Makefile - Makefile for gcc
#
CC = gcc
CFLAGS = -O2 -D__INLINE__
LFLAGS = -ltriton -lauto
all: Demo EnvPrint trLogo ToolManager1 ToolManager2 ToolManager3
Demo: Demo.c
@$(CC) $(CFLAGS) -o $@ $< $(LFLAGS)
EnvPrint: EnvPrint.c
@$(CC) $(CFLAGS) -o $@ $< $(LFLAGS)
trLogo: trLogo.c
@$(CC) $(CFLAGS) -o $@ $< $(LFLAGS)
ToolManager1: ToolManager1.c
@$(CC) $(CFLAGS) -o $@ $< $(LFLAGS)
ToolManager2: ToolManager2.c
@$(CC) $(CFLAGS) -o $@ $< $(LFLAGS)
ToolManager3: ToolManager3.c
@$(CC) $(CFLAGS) -o $@ $< $(LFLAGS)